internal/runtime/maps.table.growthLeft (field)

37 uses

	internal/runtime/maps (current package)
		runtime.go#L311: 					t.growthLeft++ // will be decremented below to become a no-op.
		runtime.go#L318: 				if t.growthLeft > 0 {
		runtime.go#L336: 					t.growthLeft--
		runtime_fast32.go#L293: 				t.growthLeft++ // will be decremented below to become a no-op.
		runtime_fast32.go#L297: 			if t.growthLeft == 0 {
		runtime_fast32.go#L302: 			if t.growthLeft > 0 {
		runtime_fast32.go#L309: 				t.growthLeft--
		runtime_fast32.go#L432: 				t.growthLeft++ // will be decremented below to become a no-op.
		runtime_fast32.go#L436: 			if t.growthLeft > 0 {
		runtime_fast32.go#L443: 				t.growthLeft--
		runtime_fast64.go#L294: 				t.growthLeft++ // will be decremented below to become a no-op.
		runtime_fast64.go#L298: 			if t.growthLeft == 0 {
		runtime_fast64.go#L303: 			if t.growthLeft > 0 {
		runtime_fast64.go#L310: 				t.growthLeft--
		runtime_fast64.go#L472: 				t.growthLeft++ // will be decremented below to become a no-op.
		runtime_fast64.go#L476: 			if t.growthLeft > 0 {
		runtime_fast64.go#L483: 				t.growthLeft--
		runtime_faststr.go#L364: 				t.growthLeft++ // will be decremented below to become a no-op.
		runtime_faststr.go#L368: 			if t.growthLeft == 0 {
		runtime_faststr.go#L373: 			if t.growthLeft > 0 {
		runtime_faststr.go#L380: 				t.growthLeft--
		table.go#L46: 	growthLeft uint16
		table.go#L105: 	t.growthLeft = t.maxGrowthLeft()
		table.go#L327: 			t.growthLeft++ // will be decremented below to become a no-op.
		table.go#L331: 		if t.growthLeft == 0 {
		table.go#L336: 		if t.growthLeft > 0 {
		table.go#L353: 			t.growthLeft--
		table.go#L383: 	if t.growthLeft == 0 {
		table.go#L413: 			t.growthLeft--
		table.go#L475: 					t.growthLeft++
		table.go#L585: 			t.growthLeft++
		table.go#L596: 	return (t.capacity*maxAvgGroupLoad)/abi.MapGroupSlots - t.used - t.growthLeft
		table.go#L602: 	if t.used == 0 && t.growthLeft == mgl { // no current entries and no tombstones
		table.go#L638: 	t.growthLeft = mgl
		table_debug.go#L66: 	if growthLeft != t.growthLeft {
		table_debug.go#L67: 		print("invariant failed: found ", t.growthLeft, " growthLeft, but expected ", growthLeft, "\n")
		table_debug.go#L89: 	growthLeft: `, t.growthLeft, `